home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / dllib.arc / IOBNBF.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-03-29  |  402 b   |  15 lines

  1. /*_ iob.c   Thu Oct 30 1986   Modified by: Walter Bright */
  2.  
  3. #include    <stdio.h>
  4.  
  5. FILE _iob[_NFILE] =
  6. {
  7.     {0,0,0,_IOTRAN | _IOREAD,0,1},        /* stdin    */
  8.     {0,0,0,_IOTRAN | _IOWRT | _IONBF ,1,1},    /* stdout    */
  9.     {0,0,0,_IOTRAN | _IOWRT | _IONBF ,2,1},    /* stderr    */
  10.     {0,0,0,_IOTRAN | _IORW  ,3,1},        /* stdaux    */
  11.     {0,0,0,_IOTRAN | _IOWRT ,4,1},        /* stdprn    */
  12.  
  13.     /* the rest have all 0 entries    */
  14. };
  15.